home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Chat & Communication / Digsby build 37 / digsby_setup.exe / lib / pdb.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-13  |  37KB  |  1,244 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.5)
  3.  
  4. import sys
  5. import linecache
  6. import cmd
  7. import bdb
  8. from repr import Repr
  9. import os
  10. import re
  11. import pprint
  12. import traceback
  13. _repr = Repr()
  14. _repr.maxstring = 200
  15. _saferepr = _repr.repr
  16. __all__ = [
  17.     'run',
  18.     'pm',
  19.     'Pdb',
  20.     'runeval',
  21.     'runctx',
  22.     'runcall',
  23.     'set_trace',
  24.     'post_mortem',
  25.     'help']
  26.  
  27. def find_function(funcname, filename):
  28.     cre = re.compile('def\\s+%s\\s*[(]' % funcname)
  29.     
  30.     try:
  31.         fp = open(filename)
  32.     except IOError:
  33.         return None
  34.  
  35.     lineno = 1
  36.     answer = None
  37.     while None:
  38.         line = fp.readline()
  39.         if line == '':
  40.             break
  41.         
  42.         if cre.match(line):
  43.             answer = (funcname, filename, lineno)
  44.             break
  45.         
  46.         lineno = lineno + 1
  47.         continue
  48.         return answer
  49.  
  50. line_prefix = '\n-> '
  51.  
  52. class Pdb(bdb.Bdb, cmd.Cmd):
  53.     
  54.     def __init__(self, completekey = 'tab', stdin = None, stdout = None):
  55.         bdb.Bdb.__init__(self)
  56.         cmd.Cmd.__init__(self, completekey, stdin, stdout)
  57.         if stdout:
  58.             self.use_rawinput = 0
  59.         
  60.         self.prompt = '(Pdb) '
  61.         self.aliases = { }
  62.         self.mainpyfile = ''
  63.         self._wait_for_mainpyfile = 0
  64.         
  65.         try:
  66.             import readline
  67.         except ImportError:
  68.             pass
  69.  
  70.         self.rcLines = []
  71.         if 'HOME' in os.environ:
  72.             envHome = os.environ['HOME']
  73.             
  74.             try:
  75.                 rcFile = open(os.path.join(envHome, '.pdbrc'))
  76.             except IOError:
  77.                 pass
  78.  
  79.             for line in rcFile.readlines():
  80.                 self.rcLines.append(line)
  81.             
  82.             rcFile.close()
  83.         
  84.         
  85.         try:
  86.             rcFile = open('.pdbrc')
  87.         except IOError:
  88.             pass
  89.  
  90.         for line in rcFile.readlines():
  91.             self.rcLines.append(line)
  92.         
  93.         rcFile.close()
  94.         self.commands = { }
  95.         self.commands_doprompt = { }
  96.         self.commands_silent = { }
  97.         self.commands_defining = False
  98.         self.commands_bnum = None
  99.  
  100.     
  101.     def reset(self):
  102.         bdb.Bdb.reset(self)
  103.         self.forget()
  104.  
  105.     
  106.     def forget(self):
  107.         self.lineno = None
  108.         self.stack = []
  109.         self.curindex = 0
  110.         self.curframe = None
  111.  
  112.     
  113.     def setup(self, f, t):
  114.         self.forget()
  115.         (self.stack, self.curindex) = self.get_stack(f, t)
  116.         self.curframe = self.stack[self.curindex][0]
  117.         self.execRcLines()
  118.  
  119.     
  120.     def execRcLines(self):
  121.         if self.rcLines:
  122.             rcLines = self.rcLines
  123.             self.rcLines = []
  124.             for line in rcLines:
  125.                 line = line[:-1]
  126.                 if len(line) > 0 and line[0] != '#':
  127.                     self.onecmd(line)
  128.                     continue
  129.             
  130.         
  131.  
  132.     
  133.     def user_call(self, frame, argument_list):
  134.         if self._wait_for_mainpyfile:
  135.             return None
  136.         
  137.         if self.stop_here(frame):
  138.             print >>self.stdout, '--Call--'
  139.             self.interaction(frame, None)
  140.         
  141.  
  142.     
  143.     def user_line(self, frame):
  144.         if self._wait_for_mainpyfile:
  145.             if self.mainpyfile != self.canonic(frame.f_code.co_filename) or frame.f_lineno <= 0:
  146.                 return None
  147.             
  148.             self._wait_for_mainpyfile = 0
  149.         
  150.         if self.bp_commands(frame):
  151.             self.interaction(frame, None)
  152.         
  153.  
  154.     
  155.     def bp_commands(self, frame):
  156.         if getattr(self, 'currentbp', False) and self.currentbp in self.commands:
  157.             currentbp = self.currentbp
  158.             self.currentbp = 0
  159.             lastcmd_back = self.lastcmd
  160.             self.setup(frame, None)
  161.             for line in self.commands[currentbp]:
  162.                 self.onecmd(line)
  163.             
  164.             self.lastcmd = lastcmd_back
  165.             if not self.commands_silent[currentbp]:
  166.                 self.print_stack_entry(self.stack[self.curindex])
  167.             
  168.             if self.commands_doprompt[currentbp]:
  169.                 self.cmdloop()
  170.             
  171.             self.forget()
  172.             return None
  173.         
  174.         return 1
  175.  
  176.     
  177.     def user_return(self, frame, return_value):
  178.         frame.f_locals['__return__'] = return_value
  179.         print >>self.stdout, '--Return--'
  180.         self.interaction(frame, None)
  181.  
  182.     
  183.     def user_exception(self, frame, .2):
  184.         (exc_type, exc_value, exc_traceback) = .2
  185.         frame.f_locals['__exception__'] = (exc_type, exc_value)
  186.         if type(exc_type) == type(''):
  187.             exc_type_name = exc_type
  188.         else:
  189.             exc_type_name = exc_type.__name__
  190.         print >>self.stdout, exc_type_name + ':', _saferepr(exc_value)
  191.         self.interaction(frame, exc_traceback)
  192.  
  193.     
  194.     def interaction(self, frame, traceback):
  195.         self.setup(frame, traceback)
  196.         self.print_stack_entry(self.stack[self.curindex])
  197.         self.cmdloop()
  198.         self.forget()
  199.  
  200.     
  201.     def default(self, line):
  202.         if line[:1] == '!':
  203.             line = line[1:]
  204.         
  205.         locals = self.curframe.f_locals
  206.         globals = self.curframe.f_globals
  207.         
  208.         try:
  209.             code = compile(line + '\n', '<stdin>', 'single')
  210.             exec code in globals, locals
  211.         except:
  212.             (t, v) = sys.exc_info()[:2]
  213.             if type(t) == type(''):
  214.                 exc_type_name = t
  215.             else:
  216.                 exc_type_name = t.__name__
  217.             print >>self.stdout, '***', exc_type_name + ':', v
  218.  
  219.  
  220.     
  221.     def precmd(self, line):
  222.         if not line.strip():
  223.             return line
  224.         
  225.         args = line.split()
  226.         while args[0] in self.aliases:
  227.             line = self.aliases[args[0]]
  228.             ii = 1
  229.             for tmpArg in args[1:]:
  230.                 line = line.replace('%' + str(ii), tmpArg)
  231.                 ii = ii + 1
  232.             
  233.             line = line.replace('%*', ' '.join(args[1:]))
  234.             args = line.split()
  235.         if args[0] != 'alias':
  236.             marker = line.find(';;')
  237.             if marker >= 0:
  238.                 next = line[marker + 2:].lstrip()
  239.                 self.cmdqueue.append(next)
  240.                 line = line[:marker].rstrip()
  241.             
  242.         
  243.         return line
  244.  
  245.     
  246.     def onecmd(self, line):
  247.         if not self.commands_defining:
  248.             return cmd.Cmd.onecmd(self, line)
  249.         else:
  250.             return self.handle_command_def(line)
  251.  
  252.     
  253.     def handle_command_def(self, line):
  254.         (cmd, arg, line) = self.parseline(line)
  255.         if cmd == 'silent':
  256.             self.commands_silent[self.commands_bnum] = True
  257.             return None
  258.         elif cmd == 'end':
  259.             self.cmdqueue = []
  260.             return 1
  261.         
  262.         cmdlist = self.commands[self.commands_bnum]
  263.         if arg:
  264.             cmdlist.append(cmd + ' ' + arg)
  265.         else:
  266.             cmdlist.append(cmd)
  267.         
  268.         try:
  269.             func = getattr(self, 'do_' + cmd)
  270.         except AttributeError:
  271.             func = self.default
  272.  
  273.         if func.func_name in self.commands_resuming:
  274.             self.commands_doprompt[self.commands_bnum] = False
  275.             self.cmdqueue = []
  276.             return 1
  277.         
  278.  
  279.     do_h = cmd.Cmd.do_help
  280.     
  281.     def do_commands(self, arg):
  282.         if not arg:
  283.             bnum = len(bdb.Breakpoint.bpbynumber) - 1
  284.         else:
  285.             
  286.             try:
  287.                 bnum = int(arg)
  288.             except:
  289.                 print >>self.stdout, 'Usage : commands [bnum]\n        ...\n        end'
  290.                 return None
  291.  
  292.         self.commands_bnum = bnum
  293.         self.commands[bnum] = []
  294.         self.commands_doprompt[bnum] = True
  295.         self.commands_silent[bnum] = False
  296.         prompt_back = self.prompt
  297.         self.prompt = '(com) '
  298.         self.commands_defining = True
  299.         self.cmdloop()
  300.         self.commands_defining = False
  301.         self.prompt = prompt_back
  302.  
  303.     
  304.     def do_break(self, arg, temporary = 0):
  305.         if not arg:
  306.             if self.breaks:
  307.                 print >>self.stdout, 'Num Type         Disp Enb   Where'
  308.                 for bp in bdb.Breakpoint.bpbynumber:
  309.                     if bp:
  310.                         bp.bpprint(self.stdout)
  311.                         continue
  312.                 
  313.             
  314.             return None
  315.         
  316.         filename = None
  317.         lineno = None
  318.         cond = None
  319.         comma = arg.find(',')
  320.         if comma > 0:
  321.             cond = arg[comma + 1:].lstrip()
  322.             arg = arg[:comma].rstrip()
  323.         
  324.         colon = arg.rfind(':')
  325.         funcname = None
  326.         if colon >= 0:
  327.             filename = arg[:colon].rstrip()
  328.             f = self.lookupmodule(filename)
  329.             if not f:
  330.                 print >>self.stdout, '*** ', repr(filename),
  331.                 print >>self.stdout, 'not found from sys.path'
  332.                 return None
  333.             else:
  334.                 filename = f
  335.             arg = arg[colon + 1:].lstrip()
  336.             
  337.             try:
  338.                 lineno = int(arg)
  339.             except ValueError:
  340.                 msg = None
  341.                 print >>self.stdout, '*** Bad lineno:', arg
  342.                 return None
  343.             except:
  344.                 None<EXCEPTION MATCH>ValueError
  345.             
  346.  
  347.         None<EXCEPTION MATCH>ValueError
  348.         
  349.         try:
  350.             lineno = int(arg)
  351.         except ValueError:
  352.             
  353.             try:
  354.                 func = eval(arg, self.curframe.f_globals, self.curframe.f_locals)
  355.             except:
  356.                 func = arg
  357.  
  358.             
  359.             try:
  360.                 if hasattr(func, 'im_func'):
  361.                     func = func.im_func
  362.                 
  363.                 code = func.func_code
  364.                 funcname = code.co_name
  365.                 lineno = code.co_firstlineno
  366.                 filename = code.co_filename
  367.             (ok, filename, ln) = self.lineinfo(arg)
  368.             if not ok:
  369.                 print >>self.stdout, '*** The specified object',
  370.                 print >>self.stdout, repr(arg),
  371.                 print >>self.stdout, 'is not a function'
  372.                 print >>self.stdout, 'or was not found along sys.path.'
  373.                 return None
  374.             
  375.  
  376.             funcname = ok
  377.             lineno = int(ln)
  378.         
  379.  
  380.         if not filename:
  381.             filename = self.defaultFile()
  382.         
  383.         line = self.checkline(filename, lineno)
  384.         if line:
  385.             err = self.set_break(filename, line, temporary, cond, funcname)
  386.             if err:
  387.                 print >>self.stdout, '***', err
  388.             else:
  389.                 bp = self.get_breaks(filename, line)[-1]
  390.                 print >>self.stdout, 'Breakpoint %d at %s:%d' % (bp.number, bp.file, bp.line)
  391.         
  392.  
  393.     
  394.     def defaultFile(self):
  395.         filename = self.curframe.f_code.co_filename
  396.         if filename == '<string>' and self.mainpyfile:
  397.             filename = self.mainpyfile
  398.         
  399.         return filename
  400.  
  401.     do_b = do_break
  402.     
  403.     def do_tbreak(self, arg):
  404.         self.do_break(arg, 1)
  405.  
  406.     
  407.     def lineinfo(self, identifier):
  408.         failed = (None, None, None)
  409.         idstring = identifier.split("'")
  410.         if len(idstring) == 1:
  411.             id = idstring[0].strip()
  412.         elif len(idstring) == 3:
  413.             id = idstring[1].strip()
  414.         else:
  415.             return failed
  416.         if id == '':
  417.             return failed
  418.         
  419.         parts = id.split('.')
  420.         if parts[0] == 'self':
  421.             del parts[0]
  422.             if len(parts) == 0:
  423.                 return failed
  424.             
  425.         
  426.         fname = self.defaultFile()
  427.         if len(parts) == 1:
  428.             item = parts[0]
  429.         else:
  430.             f = self.lookupmodule(parts[0])
  431.             if f:
  432.                 fname = f
  433.             
  434.             item = parts[1]
  435.         answer = find_function(item, fname)
  436.         if not answer:
  437.             pass
  438.         return failed
  439.  
  440.     
  441.     def checkline(self, filename, lineno):
  442.         line = linecache.getline(filename, lineno)
  443.         if not line:
  444.             print >>self.stdout, 'End of file'
  445.             return 0
  446.         
  447.         line = line.strip()
  448.         if not line and line[0] == '#' and line[:3] == '"""' or line[:3] == "'''":
  449.             print >>self.stdout, '*** Blank or comment'
  450.             return 0
  451.         
  452.         return lineno
  453.  
  454.     
  455.     def do_enable(self, arg):
  456.         args = arg.split()
  457.         for i in args:
  458.             
  459.             try:
  460.                 i = int(i)
  461.             except ValueError:
  462.                 print >>self.stdout, 'Breakpoint index %r is not a number' % i
  463.                 continue
  464.  
  465.             if i <= i:
  466.                 pass
  467.             elif not i < len(bdb.Breakpoint.bpbynumber):
  468.                 print >>self.stdout, 'No breakpoint numbered', i
  469.                 continue
  470.             
  471.             bp = bdb.Breakpoint.bpbynumber[i]
  472.             if bp:
  473.                 bp.enable()
  474.                 continue
  475.             0
  476.         
  477.  
  478.     
  479.     def do_disable(self, arg):
  480.         args = arg.split()
  481.         for i in args:
  482.             
  483.             try:
  484.                 i = int(i)
  485.             except ValueError:
  486.                 print >>self.stdout, 'Breakpoint index %r is not a number' % i
  487.                 continue
  488.  
  489.             if i <= i:
  490.                 pass
  491.             elif not i < len(bdb.Breakpoint.bpbynumber):
  492.                 print >>self.stdout, 'No breakpoint numbered', i
  493.                 continue
  494.             
  495.             bp = bdb.Breakpoint.bpbynumber[i]
  496.             if bp:
  497.                 bp.disable()
  498.                 continue
  499.             0
  500.         
  501.  
  502.     
  503.     def do_condition(self, arg):
  504.         args = arg.split(' ', 1)
  505.         
  506.         try:
  507.             bpnum = int(args[0].strip())
  508.         except ValueError:
  509.             print >>self.stdout, 'Breakpoint index %r is not a number' % args[0]
  510.             return None
  511.  
  512.         
  513.         try:
  514.             cond = args[1]
  515.         except:
  516.             cond = None
  517.  
  518.         
  519.         try:
  520.             bp = bdb.Breakpoint.bpbynumber[bpnum]
  521.         except IndexError:
  522.             print >>self.stdout, 'Breakpoint index %r is not valid' % args[0]
  523.             return None
  524.  
  525.         if bp:
  526.             bp.cond = cond
  527.             if not cond:
  528.                 print >>self.stdout, 'Breakpoint', bpnum,
  529.                 print >>self.stdout, 'is now unconditional.'
  530.             
  531.         
  532.  
  533.     
  534.     def do_ignore(self, arg):
  535.         args = arg.split()
  536.         
  537.         try:
  538.             bpnum = int(args[0].strip())
  539.         except ValueError:
  540.             print >>self.stdout, 'Breakpoint index %r is not a number' % args[0]
  541.             return None
  542.  
  543.         
  544.         try:
  545.             count = int(args[1].strip())
  546.         except:
  547.             count = 0
  548.  
  549.         
  550.         try:
  551.             bp = bdb.Breakpoint.bpbynumber[bpnum]
  552.         except IndexError:
  553.             print >>self.stdout, 'Breakpoint index %r is not valid' % args[0]
  554.             return None
  555.  
  556.         if bp:
  557.             bp.ignore = count
  558.             if count > 0:
  559.                 reply = 'Will ignore next '
  560.                 if count > 1:
  561.                     reply = reply + '%d crossings' % count
  562.                 else:
  563.                     reply = reply + '1 crossing'
  564.                 print >>self.stdout, reply + ' of breakpoint %d.' % bpnum
  565.             else:
  566.                 print >>self.stdout, 'Will stop next time breakpoint',
  567.                 print >>self.stdout, bpnum, 'is reached.'
  568.         
  569.  
  570.     
  571.     def do_clear(self, arg):
  572.         if not arg:
  573.             
  574.             try:
  575.                 reply = raw_input('Clear all breaks? ')
  576.             except EOFError:
  577.                 reply = 'no'
  578.  
  579.             reply = reply.strip().lower()
  580.             if reply in ('y', 'yes'):
  581.                 self.clear_all_breaks()
  582.             
  583.             return None
  584.         
  585.         if ':' in arg:
  586.             i = arg.rfind(':')
  587.             filename = arg[:i]
  588.             arg = arg[i + 1:]
  589.             
  590.             try:
  591.                 lineno = int(arg)
  592.             except ValueError:
  593.                 err = 'Invalid line number (%s)' % arg
  594.  
  595.             err = self.clear_break(filename, lineno)
  596.             if err:
  597.                 print >>self.stdout, '***', err
  598.             
  599.             return None
  600.         
  601.         numberlist = arg.split()
  602.         for i in numberlist:
  603.             
  604.             try:
  605.                 i = int(i)
  606.             except ValueError:
  607.                 print >>self.stdout, 'Breakpoint index %r is not a number' % i
  608.                 continue
  609.  
  610.             if i <= i:
  611.                 pass
  612.             elif not i < len(bdb.Breakpoint.bpbynumber):
  613.                 print >>self.stdout, 'No breakpoint numbered', i
  614.                 continue
  615.             
  616.             err = self.clear_bpbynumber(i)
  617.             if err:
  618.                 print >>self.stdout, '***', err
  619.                 continue
  620.             print >>self.stdout, 'Deleted breakpoint', i
  621.         
  622.  
  623.     do_cl = do_clear
  624.     
  625.     def do_where(self, arg):
  626.         self.print_stack_trace()
  627.  
  628.     do_w = do_where
  629.     do_bt = do_where
  630.     
  631.     def do_up(self, arg):
  632.         if self.curindex == 0:
  633.             print >>self.stdout, '*** Oldest frame'
  634.         else:
  635.             self.curindex = self.curindex - 1
  636.             self.curframe = self.stack[self.curindex][0]
  637.             self.print_stack_entry(self.stack[self.curindex])
  638.             self.lineno = None
  639.  
  640.     do_u = do_up
  641.     
  642.     def do_down(self, arg):
  643.         if self.curindex + 1 == len(self.stack):
  644.             print >>self.stdout, '*** Newest frame'
  645.         else:
  646.             self.curindex = self.curindex + 1
  647.             self.curframe = self.stack[self.curindex][0]
  648.             self.print_stack_entry(self.stack[self.curindex])
  649.             self.lineno = None
  650.  
  651.     do_d = do_down
  652.     
  653.     def do_step(self, arg):
  654.         self.set_step()
  655.         return 1
  656.  
  657.     do_s = do_step
  658.     
  659.     def do_next(self, arg):
  660.         self.set_next(self.curframe)
  661.         return 1
  662.  
  663.     do_n = do_next
  664.     
  665.     def do_return(self, arg):
  666.         self.set_return(self.curframe)
  667.         return 1
  668.  
  669.     do_r = do_return
  670.     
  671.     def do_continue(self, arg):
  672.         self.set_continue()
  673.         return 1
  674.  
  675.     do_c = do_cont = do_continue
  676.     
  677.     def do_jump(self, arg):
  678.         if self.curindex + 1 != len(self.stack):
  679.             print >>self.stdout, '*** You can only jump within the bottom frame'
  680.             return None
  681.         
  682.         
  683.         try:
  684.             arg = int(arg)
  685.         except ValueError:
  686.             print >>self.stdout, "*** The 'jump' command requires a line number."
  687.  
  688.         
  689.         try:
  690.             self.curframe.f_lineno = arg
  691.             self.stack[self.curindex] = (self.stack[self.curindex][0], arg)
  692.             self.print_stack_entry(self.stack[self.curindex])
  693.         except ValueError:
  694.             e = None
  695.             print >>self.stdout, '*** Jump failed:', e
  696.  
  697.  
  698.     do_j = do_jump
  699.     
  700.     def do_debug(self, arg):
  701.         sys.settrace(None)
  702.         globals = self.curframe.f_globals
  703.         locals = self.curframe.f_locals
  704.         p = Pdb(self.completekey, self.stdin, self.stdout)
  705.         p.prompt = '(%s) ' % self.prompt.strip()
  706.         print >>self.stdout, 'ENTERING RECURSIVE DEBUGGER'
  707.         sys.call_tracing(p.run, (arg, globals, locals))
  708.         print >>self.stdout, 'LEAVING RECURSIVE DEBUGGER'
  709.         sys.settrace(self.trace_dispatch)
  710.         self.lastcmd = p.lastcmd
  711.  
  712.     
  713.     def do_quit(self, arg):
  714.         self._user_requested_quit = 1
  715.         self.set_quit()
  716.         return 1
  717.  
  718.     do_q = do_quit
  719.     do_exit = do_quit
  720.     
  721.     def do_EOF(self, arg):
  722.         print >>self.stdout
  723.         self._user_requested_quit = 1
  724.         self.set_quit()
  725.         return 1
  726.  
  727.     
  728.     def do_args(self, arg):
  729.         f = self.curframe
  730.         co = f.f_code
  731.         dict = f.f_locals
  732.         n = co.co_argcount
  733.         if co.co_flags & 4:
  734.             n = n + 1
  735.         
  736.         if co.co_flags & 8:
  737.             n = n + 1
  738.         
  739.         for i in range(n):
  740.             name = co.co_varnames[i]
  741.             print >>self.stdout, name, '=',
  742.             if name in dict:
  743.                 print >>self.stdout, dict[name]
  744.                 continue
  745.             print >>self.stdout, '*** undefined ***'
  746.         
  747.  
  748.     do_a = do_args
  749.     
  750.     def do_retval(self, arg):
  751.         if '__return__' in self.curframe.f_locals:
  752.             print >>self.stdout, self.curframe.f_locals['__return__']
  753.         else:
  754.             print >>self.stdout, '*** Not yet returned!'
  755.  
  756.     do_rv = do_retval
  757.     
  758.     def _getval(self, arg):
  759.         
  760.         try:
  761.             return eval(arg, self.curframe.f_globals, self.curframe.f_locals)
  762.         except:
  763.             (t, v) = sys.exc_info()[:2]
  764.             if isinstance(t, str):
  765.                 exc_type_name = t
  766.             else:
  767.                 exc_type_name = t.__name__
  768.             print >>self.stdout, '***', exc_type_name + ':', repr(v)
  769.             raise 
  770.  
  771.  
  772.     
  773.     def do_p(self, arg):
  774.         
  775.         try:
  776.             print >>self.stdout, repr(self._getval(arg))
  777.         except:
  778.             pass
  779.  
  780.  
  781.     
  782.     def do_pp(self, arg):
  783.         
  784.         try:
  785.             pprint.pprint(self._getval(arg), self.stdout)
  786.         except:
  787.             pass
  788.  
  789.  
  790.     
  791.     def do_list(self, arg):
  792.         self.lastcmd = 'list'
  793.         last = None
  794.         if arg:
  795.             
  796.             try:
  797.                 x = eval(arg, { }, { })
  798.                 if type(x) == type(()):
  799.                     (first, last) = x
  800.                     first = int(first)
  801.                     last = int(last)
  802.                     if last < first:
  803.                         last = first + last
  804.                     
  805.                 else:
  806.                     first = max(1, int(x) - 5)
  807.             print >>self.stdout, '*** Error in argument:', repr(arg)
  808.             return None
  809.  
  810.         elif self.lineno is None:
  811.             first = max(1, self.curframe.f_lineno - 5)
  812.         else:
  813.             first = self.lineno + 1
  814.         if last is None:
  815.             last = first + 10
  816.         
  817.         filename = self.curframe.f_code.co_filename
  818.         breaklist = self.get_file_breaks(filename)
  819.         
  820.         try:
  821.             for lineno in range(first, last + 1):
  822.                 line = linecache.getline(filename, lineno)
  823.                 if not line:
  824.                     print >>self.stdout, '[EOF]'
  825.                     break
  826.                     continue
  827.                 s = repr(lineno).rjust(3)
  828.                 if len(s) < 4:
  829.                     s = s + ' '
  830.                 
  831.                 if lineno in breaklist:
  832.                     s = s + 'B'
  833.                 else:
  834.                     s = s + ' '
  835.                 if lineno == self.curframe.f_lineno:
  836.                     s = s + '->'
  837.                 
  838.                 print >>self.stdout, s + '\t' + line,
  839.                 self.lineno = lineno
  840.         except KeyboardInterrupt:
  841.             pass
  842.  
  843.  
  844.     do_l = do_list
  845.     
  846.     def do_whatis(self, arg):
  847.         
  848.         try:
  849.             value = eval(arg, self.curframe.f_globals, self.curframe.f_locals)
  850.         except:
  851.             (t, v) = sys.exc_info()[:2]
  852.             if type(t) == type(''):
  853.                 exc_type_name = t
  854.             else:
  855.                 exc_type_name = t.__name__
  856.             print >>self.stdout, '***', exc_type_name + ':', repr(v)
  857.             return None
  858.  
  859.         code = None
  860.         
  861.         try:
  862.             code = value.func_code
  863.         except:
  864.             pass
  865.  
  866.         if code:
  867.             print >>self.stdout, 'Function', code.co_name
  868.             return None
  869.         
  870.         
  871.         try:
  872.             code = value.im_func.func_code
  873.         except:
  874.             pass
  875.  
  876.         if code:
  877.             print >>self.stdout, 'Method', code.co_name
  878.             return None
  879.         
  880.         print >>self.stdout, type(value)
  881.  
  882.     
  883.     def do_alias(self, arg):
  884.         args = arg.split()
  885.         if len(args) == 0:
  886.             keys = self.aliases.keys()
  887.             keys.sort()
  888.             for alias in keys:
  889.                 print >>self.stdout, '%s = %s' % (alias, self.aliases[alias])
  890.             
  891.             return None
  892.         
  893.         if args[0] in self.aliases and len(args) == 1:
  894.             print >>self.stdout, '%s = %s' % (args[0], self.aliases[args[0]])
  895.         else:
  896.             self.aliases[args[0]] = ' '.join(args[1:])
  897.  
  898.     
  899.     def do_unalias(self, arg):
  900.         args = arg.split()
  901.         if len(args) == 0:
  902.             return None
  903.         
  904.         if args[0] in self.aliases:
  905.             del self.aliases[args[0]]
  906.         
  907.  
  908.     commands_resuming = [
  909.         'do_continue',
  910.         'do_step',
  911.         'do_next',
  912.         'do_return',
  913.         'do_quit',
  914.         'do_jump']
  915.     
  916.     def print_stack_trace(self):
  917.         
  918.         try:
  919.             for frame_lineno in self.stack:
  920.                 self.print_stack_entry(frame_lineno)
  921.         except KeyboardInterrupt:
  922.             pass
  923.  
  924.  
  925.     
  926.     def print_stack_entry(self, frame_lineno, prompt_prefix = line_prefix):
  927.         (frame, lineno) = frame_lineno
  928.         if frame is self.curframe:
  929.             print >>self.stdout, '>',
  930.         else:
  931.             print >>self.stdout, ' ',
  932.         print >>self.stdout, self.format_stack_entry(frame_lineno, prompt_prefix)
  933.  
  934.     
  935.     def help_help(self):
  936.         self.help_h()
  937.  
  938.     
  939.     def help_h(self):
  940.         print >>self.stdout, 'h(elp)\nWithout argument, print the list of available commands.\nWith a command name as argument, print help about that command\n"help pdb" pipes the full documentation file to the $PAGER\n"help exec" gives help on the ! command'
  941.  
  942.     
  943.     def help_where(self):
  944.         self.help_w()
  945.  
  946.     
  947.     def help_w(self):
  948.         print >>self.stdout, 'w(here)\nPrint a stack trace, with the most recent frame at the bottom.\nAn arrow indicates the "current frame", which determines the\ncontext of most commands.  \'bt\' is an alias for this command.'
  949.  
  950.     help_bt = help_w
  951.     
  952.     def help_down(self):
  953.         self.help_d()
  954.  
  955.     
  956.     def help_d(self):
  957.         print >>self.stdout, 'd(own)\nMove the current frame one level down in the stack trace\n(to a newer frame).'
  958.  
  959.     
  960.     def help_up(self):
  961.         self.help_u()
  962.  
  963.     
  964.     def help_u(self):
  965.         print >>self.stdout, 'u(p)\nMove the current frame one level up in the stack trace\n(to an older frame).'
  966.  
  967.     
  968.     def help_break(self):
  969.         self.help_b()
  970.  
  971.     
  972.     def help_b(self):
  973.         print >>self.stdout, "b(reak) ([file:]lineno | function) [, condition]\nWith a line number argument, set a break there in the current\nfile.  With a function name, set a break at first executable line\nof that function.  Without argument, list all breaks.  If a second\nargument is present, it is a string specifying an expression\nwhich must evaluate to true before the breakpoint is honored.\n\nThe line number may be prefixed with a filename and a colon,\nto specify a breakpoint in another file (probably one that\nhasn't been loaded yet).  The file is searched for on sys.path;\nthe .py suffix may be omitted."
  974.  
  975.     
  976.     def help_clear(self):
  977.         self.help_cl()
  978.  
  979.     
  980.     def help_cl(self):
  981.         print >>self.stdout, 'cl(ear) filename:lineno'
  982.         print >>self.stdout, 'cl(ear) [bpnumber [bpnumber...]]\nWith a space separated list of breakpoint numbers, clear\nthose breakpoints.  Without argument, clear all breaks (but\nfirst ask confirmation).  With a filename:lineno argument,\nclear all breaks at that line in that file.\n\nNote that the argument is different from previous versions of\nthe debugger (in python distributions 1.5.1 and before) where\na linenumber was used instead of either filename:lineno or\nbreakpoint numbers.'
  983.  
  984.     
  985.     def help_tbreak(self):
  986.         print >>self.stdout, 'tbreak  same arguments as break, but breakpoint is\nremoved when first hit.'
  987.  
  988.     
  989.     def help_enable(self):
  990.         print >>self.stdout, 'enable bpnumber [bpnumber ...]\nEnables the breakpoints given as a space separated list of\nbp numbers.'
  991.  
  992.     
  993.     def help_disable(self):
  994.         print >>self.stdout, 'disable bpnumber [bpnumber ...]\nDisables the breakpoints given as a space separated list of\nbp numbers.'
  995.  
  996.     
  997.     def help_ignore(self):
  998.         print >>self.stdout, 'ignore bpnumber count\nSets the ignore count for the given breakpoint number.  A breakpoint\nbecomes active when the ignore count is zero.  When non-zero, the\ncount is decremented each time the breakpoint is reached and the\nbreakpoint is not disabled and any associated condition evaluates\nto true.'
  999.  
  1000.     
  1001.     def help_condition(self):
  1002.         print >>self.stdout, 'condition bpnumber str_condition\nstr_condition is a string specifying an expression which\nmust evaluate to true before the breakpoint is honored.\nIf str_condition is absent, any existing condition is removed;\ni.e., the breakpoint is made unconditional.'
  1003.  
  1004.     
  1005.     def help_step(self):
  1006.         self.help_s()
  1007.  
  1008.     
  1009.     def help_s(self):
  1010.         print >>self.stdout, 's(tep)\nExecute the current line, stop at the first possible occasion\n(either in a function that is called or in the current function).'
  1011.  
  1012.     
  1013.     def help_next(self):
  1014.         self.help_n()
  1015.  
  1016.     
  1017.     def help_n(self):
  1018.         print >>self.stdout, 'n(ext)\nContinue execution until the next line in the current function\nis reached or it returns.'
  1019.  
  1020.     
  1021.     def help_return(self):
  1022.         self.help_r()
  1023.  
  1024.     
  1025.     def help_r(self):
  1026.         print >>self.stdout, 'r(eturn)\nContinue execution until the current function returns.'
  1027.  
  1028.     
  1029.     def help_continue(self):
  1030.         self.help_c()
  1031.  
  1032.     
  1033.     def help_cont(self):
  1034.         self.help_c()
  1035.  
  1036.     
  1037.     def help_c(self):
  1038.         print >>self.stdout, 'c(ont(inue))\nContinue execution, only stop when a breakpoint is encountered.'
  1039.  
  1040.     
  1041.     def help_jump(self):
  1042.         self.help_j()
  1043.  
  1044.     
  1045.     def help_j(self):
  1046.         print >>self.stdout, 'j(ump) lineno\nSet the next line that will be executed.'
  1047.  
  1048.     
  1049.     def help_debug(self):
  1050.         print >>self.stdout, 'debug code\nEnter a recursive debugger that steps through the code argument\n(which is an arbitrary expression or statement to be executed\nin the current environment).'
  1051.  
  1052.     
  1053.     def help_list(self):
  1054.         self.help_l()
  1055.  
  1056.     
  1057.     def help_l(self):
  1058.         print >>self.stdout, 'l(ist) [first [,last]]\nList source code for the current file.\nWithout arguments, list 11 lines around the current line\nor continue the previous listing.\nWith one argument, list 11 lines starting at that line.\nWith two arguments, list the given range;\nif the second argument is less than the first, it is a count.'
  1059.  
  1060.     
  1061.     def help_args(self):
  1062.         self.help_a()
  1063.  
  1064.     
  1065.     def help_a(self):
  1066.         print >>self.stdout, 'a(rgs)\nPrint the arguments of the current function.'
  1067.  
  1068.     
  1069.     def help_p(self):
  1070.         print >>self.stdout, 'p expression\nPrint the value of the expression.'
  1071.  
  1072.     
  1073.     def help_pp(self):
  1074.         print >>self.stdout, 'pp expression\nPretty-print the value of the expression.'
  1075.  
  1076.     
  1077.     def help_exec(self):
  1078.         print >>self.stdout, "(!) statement\nExecute the (one-line) statement in the context of\nthe current stack frame.\nThe exclamation point can be omitted unless the first word\nof the statement resembles a debugger command.\nTo assign to a global variable you must always prefix the\ncommand with a 'global' command, e.g.:\n(Pdb) global list_options; list_options = ['-l']\n(Pdb)"
  1079.  
  1080.     
  1081.     def help_quit(self):
  1082.         self.help_q()
  1083.  
  1084.     
  1085.     def help_q(self):
  1086.         print >>self.stdout, 'q(uit) or exit - Quit from the debugger.\nThe program being executed is aborted.'
  1087.  
  1088.     help_exit = help_q
  1089.     
  1090.     def help_whatis(self):
  1091.         print >>self.stdout, 'whatis arg\nPrints the type of the argument.'
  1092.  
  1093.     
  1094.     def help_EOF(self):
  1095.         print >>self.stdout, 'EOF\nHandles the receipt of EOF as a command.'
  1096.  
  1097.     
  1098.     def help_alias(self):
  1099.         print >>self.stdout, 'alias [name [command [parameter parameter ...] ]]\nCreates an alias called \'name\' the executes \'command\'.  The command\nmust *not* be enclosed in quotes.  Replaceable parameters are\nindicated by %1, %2, and so on, while %* is replaced by all the\nparameters.  If no command is given, the current alias for name\nis shown. If no name is given, all aliases are listed.\n\nAliases may be nested and can contain anything that can be\nlegally typed at the pdb prompt.  Note!  You *can* override\ninternal pdb commands with aliases!  Those internal commands\nare then hidden until the alias is removed.  Aliasing is recursively\napplied to the first word of the command line; all other words\nin the line are left alone.\n\nSome useful aliases (especially when placed in the .pdbrc file) are:\n\n#Print instance variables (usage "pi classInst")\nalias pi for k in %1.__dict__.keys(): print "%1.",k,"=",%1.__dict__[k]\n\n#Print instance variables in self\nalias ps pi self\n'
  1100.  
  1101.     
  1102.     def help_unalias(self):
  1103.         print >>self.stdout, 'unalias name\nDeletes the specified alias.'
  1104.  
  1105.     
  1106.     def help_commands(self):
  1107.         print >>self.stdout, "commands [bpnumber]\n(com) ...\n(com) end\n(Pdb)\n\nSpecify a list of commands for breakpoint number bpnumber.  The\ncommands themselves appear on the following lines.  Type a line\ncontaining just 'end' to terminate the commands.\n\nTo remove all commands from a breakpoint, type commands and\nfollow it immediately with  end; that is, give no commands.\n\nWith no bpnumber argument, commands refers to the last\nbreakpoint set.\n\nYou can use breakpoint commands to start your program up again.\nSimply use the continue command, or step, or any other\ncommand that resumes execution.\n\nSpecifying any command resuming execution (currently continue,\nstep, next, return, jump, quit and their abbreviations) terminates\nthe command list (as if that command was immediately followed by end).\nThis is because any time you resume execution\n(even with a simple next or step), you may encounter\nanother breakpoint--which could have its own command list, leading to\nambiguities about which list to execute.\n\n   If you use the 'silent' command in the command list, the\nusual message about stopping at a breakpoint is not printed.  This may\nbe desirable for breakpoints that are to print a specific message and\nthen continue.  If none of the other commands print anything, you\nsee no sign that the breakpoint was reached.\n"
  1108.  
  1109.     
  1110.     def help_pdb(self):
  1111.         help()
  1112.  
  1113.     
  1114.     def lookupmodule(self, filename):
  1115.         if os.path.isabs(filename) and os.path.exists(filename):
  1116.             return filename
  1117.         
  1118.         f = os.path.join(sys.path[0], filename)
  1119.         if os.path.exists(f) and self.canonic(f) == self.mainpyfile:
  1120.             return f
  1121.         
  1122.         (root, ext) = os.path.splitext(filename)
  1123.         if ext == '':
  1124.             filename = filename + '.py'
  1125.         
  1126.         if os.path.isabs(filename):
  1127.             return filename
  1128.         
  1129.         for dirname in sys.path:
  1130.             while os.path.islink(dirname):
  1131.                 dirname = os.readlink(dirname)
  1132.             fullname = os.path.join(dirname, filename)
  1133.             if os.path.exists(fullname):
  1134.                 return fullname
  1135.                 continue
  1136.         
  1137.  
  1138.     
  1139.     def _runscript(self, filename):
  1140.         globals_ = {
  1141.             '__name__': '__main__',
  1142.             '__file__': filename }
  1143.         locals_ = globals_
  1144.         self._wait_for_mainpyfile = 1
  1145.         self.mainpyfile = self.canonic(filename)
  1146.         self._user_requested_quit = 0
  1147.         statement = 'execfile( "%s")' % filename
  1148.         self.run(statement, globals = globals_, locals = locals_)
  1149.  
  1150.  
  1151.  
  1152. def run(statement, globals = None, locals = None):
  1153.     Pdb().run(statement, globals, locals)
  1154.  
  1155.  
  1156. def runeval(expression, globals = None, locals = None):
  1157.     return Pdb().runeval(expression, globals, locals)
  1158.  
  1159.  
  1160. def runctx(statement, globals, locals):
  1161.     run(statement, globals, locals)
  1162.  
  1163.  
  1164. def runcall(*args, **kwds):
  1165.     return Pdb().runcall(*args, **kwds)
  1166.  
  1167.  
  1168. def set_trace():
  1169.     Pdb().set_trace(sys._getframe().f_back)
  1170.  
  1171.  
  1172. def post_mortem(t):
  1173.     p = Pdb()
  1174.     p.reset()
  1175.     while t.tb_next is not None:
  1176.         t = t.tb_next
  1177.     p.interaction(t.tb_frame, t)
  1178.  
  1179.  
  1180. def pm():
  1181.     post_mortem(sys.last_traceback)
  1182.  
  1183. TESTCMD = 'import x; x.main()'
  1184.  
  1185. def test():
  1186.     run(TESTCMD)
  1187.  
  1188.  
  1189. def help():
  1190.     for dirname in sys.path:
  1191.         fullname = os.path.join(dirname, 'pdb.doc')
  1192.         if os.path.exists(fullname):
  1193.             sts = os.system('${PAGER-more} ' + fullname)
  1194.             if sts:
  1195.                 print '*** Pager exit status:', sts
  1196.             
  1197.             break
  1198.             continue
  1199.     else:
  1200.         print 'Sorry, can\'t find the help file "pdb.doc"', 'along the Python search path'
  1201.  
  1202.  
  1203. def main():
  1204.     if not sys.argv[1:]:
  1205.         print 'usage: pdb.py scriptfile [arg] ...'
  1206.         sys.exit(2)
  1207.     
  1208.     mainpyfile = sys.argv[1]
  1209.     if not os.path.exists(mainpyfile):
  1210.         print 'Error:', mainpyfile, 'does not exist'
  1211.         sys.exit(1)
  1212.     
  1213.     del sys.argv[0]
  1214.     sys.path[0] = os.path.dirname(mainpyfile)
  1215.     pdb = Pdb()
  1216.     while None:
  1217.         
  1218.         try:
  1219.             pdb._runscript(mainpyfile)
  1220.             if pdb._user_requested_quit:
  1221.                 break
  1222.             
  1223.             print 'The program finished and will be restarted'
  1224.         continue
  1225.         except SystemExit:
  1226.             print 'The program exited via sys.exit(). Exit status: ', sys.exc_info()[1]
  1227.             continue
  1228.             traceback.print_exc()
  1229.             print 'Uncaught exception. Entering post mortem debugging'
  1230.             print "Running 'cont' or 'step' will restart the program"
  1231.             t = sys.exc_info()[2]
  1232.             while t.tb_next is not None:
  1233.                 t = t.tb_next
  1234.             pdb.interaction(t.tb_frame, t)
  1235.             print 'Post mortem debugger finished. The ' + mainpyfile + ' will be restarted'
  1236.             continue
  1237.         
  1238.  
  1239.         return None
  1240.  
  1241. if __name__ == '__main__':
  1242.     main()
  1243.  
  1244.